home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedAgentDoc.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  419 b   |  29 lines

  1. /*    ==============
  2.  *    PedAgentDoc.hh
  3.  *    ==============
  4.  *
  5.  *    Implemented by PedAgentDoc.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include "PedAgent.hh"
  11.  
  12. class PedWindow;
  13. class PedDocument;
  14.  
  15. class PedAgentDoc : public PedAgent {
  16. public:
  17.     PedAgentDoc(PedTask *inParent);
  18.     virtual ~PedAgentDoc();
  19.     
  20.     virtual PedDocument *Document() = 0;
  21.     
  22.     virtual void InitWindow();
  23.     
  24.     virtual bool OpenWindow();
  25.     virtual bool CloseWindow();
  26.     
  27. protected:
  28. };
  29.